Conversation
Summary of ChangesHello @yeongsinkeem, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! 이 PR은 시스템의 학교 관련 데이터 모델을 'School'에서 'University'로 전면 개편하고, 지역 정보를 위한 'Region' 엔티티를 도입합니다. 이를 통해 공공데이터 기반의 대학 정보 초기화 및 관리 기능을 강화하며, 사용자에게 대학 이름 및 초성 검색 기능을 제공하여 조직 생성 및 검색 경험을 개선합니다. 전반적인 데이터 구조의 현대화와 기능 확장을 목표로 합니다. Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
|
|
||
| // commandLineRunner의 run 메서드는 String... args로 유지 (String[] args와 유사) -> 스프링 부트 공식 문서 참고 | ||
| // args를 꼭 배열로 넘겨야 하는 건 아니고 가변적으로 받을 수 있다는 의도를 나타냄 | ||
| @Override |
There was a problem hiding this comment.
| initializeRegions(); | ||
|
|
||
| // 2. University 대학 데이터 | ||
| initializeUniversities(); |
|
|
||
| // 3. 테스트/관리자 데이터 | ||
| initializeAdmin(); | ||
| } |
| private void initializeRegions() { | ||
| if (regionRepository.count() == 0) { | ||
| List<Region> regions = new ArrayList<>(); | ||
|
|
src/main/java/org/example/tackit/domain/organization/service/OrganizationService.java
Show resolved
Hide resolved
src/main/java/org/example/tackit/domain/organization/service/OrganizationService.java
Show resolved
Hide resolved
src/main/java/org/example/tackit/domain/organization/service/OrganizationService.java
Show resolved
Hide resolved
src/main/java/org/example/tackit/domain/organization/service/OrganizationService.java
Show resolved
Hide resolved
tishakong
left a comment
There was a problem hiding this comment.
내용 확인했습니다~ 로직에서 이해 안되는 부분은 없습니다.
제미나이 리뷰들도 대부분 응답값 반환 형식 통일 관련 멘트인데, 지금 수정하실 여력이 있으시면 수정하시고, 아니면 머지해도 될 것 같습니다!
이슈 번호
작업 내용